(bug 8379) Output both source and destination titles
authorRob Church <robchurch@users.mediawiki.org>
Tue, 26 Dec 2006 03:08:35 +0000 (03:08 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Tue, 26 Dec 2006 03:08:35 +0000 (03:08 +0000)
maintenance/moveBatch.php

index 13a5122..4b0abf7 100644 (file)
@@ -76,7 +76,7 @@ for ( $linenum = 1; !feof( $file ); $linenum++ ) {
        }
 
 
-       print $source->getPrefixedText();
+       print $source->getPrefixedText() . ' --> ' . $dest->getPrefixedText();
        $dbw->begin();
        $err = $source->moveTo( $dest, false, $reason );
        if( $err !== true ) {